Doc typo fixes
authorAaron Schulz <aschulz@wikimedia.org>
Wed, 17 Sep 2014 18:30:07 +0000 (11:30 -0700)
committerAaron Schulz <aschulz@wikimedia.org>
Wed, 17 Sep 2014 18:30:07 +0000 (11:30 -0700)
Change-Id: I41286754185dbd1d23f409dfb60eb0fe9d4aa5f5

includes/cache/bloom/BloomCacheRedis.php

index 7bafc99..212e5e8 100644 (file)
  */
 
 /**
- * Bloom filter implented using Redis
+ * Bloom filter implemented using Redis
  *
  * The Redis server must be >= 2.6 and should have volatile-lru or volatile-ttl
  * if there is any eviction policy. It should not be allkeys-* in any case. Also,
- * this can be used in a simple master/slave setup or with Redis Sentinal preferably.
+ * this can be used in a simple master/slave setup or with Redis Sentinel preferably.
  *
  * Some bits are based on https://github.com/ErikDubbelboer/redis-lua-scaling-bloom-filter
  * but are simplified to use a single filter instead of up to 32 filters.